home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / scheme / pseudo-s / pseudo_2.lha / files.lisp < prev    next >
Encoding:
Text File  |  1991-06-21  |  969 b   |  30 lines

  1. ; -*- Mode: Lisp; Syntax: Common-Lisp; -*-
  2. ; File files.lisp / Copyright (c) 1991 Jonathan Rees / See file COPYING
  3.  
  4. ; This file intentionally has no IN-PACKAGE, because it's
  5. ; loaded into the SCHI package
  6.  
  7. (lisp:defparameter translator-files
  8.   '("P-RECORD"   ; record package
  9.     "P-UTILS"    ; tables and fluids
  10.     "LIST"       ; list utilities
  11.     "CLASSES"
  12.     "EXPR"     ; expression stuff used by classifier
  13.     "CLASSIFY"
  14.     "NODE"       ; budding node abstraction
  15.     "MODULE"     ; signatures and modules
  16.     "SSIG"     ; Scheme signature
  17.     "ALPHA"      ; front end
  18.     "RULES"     ; the (syntax-rules ...) macro
  19.     "DERIVE"     ; derived expression types
  20.     "SCHEMIFY"   ; degenerate back end
  21.     "STRATEGY"     ; LETREC strategy anaylzer
  22.     "VERSION"
  23.  
  24.     ;; CL-specific stuff
  25.     "EMIT"     ; code emission utilities
  26.     "GENERATE"   ; CL code generator
  27.     "BUILTIN"    ; CL info about scheme built-ins
  28.     "TRANSLATE"     ; phase coordination and file transducer
  29.     ))
  30.